home *** CD-ROM | disk | FTP | other *** search
/ Interactive Media Design Review 1999 / Interactive Media Design Review 1999.iso / pc / allfiles / angry / scene3_4.dir / 00011_Script_scene4C FRAME < prev    next >
Text File  |  1999-03-01  |  524b  |  24 lines

  1. --FRAME:scene4C
  2.  
  3. on enterFrame  
  4.   
  5.   repeat with x = 10 to 20
  6.     puppetSprite x, TRUE
  7.     set the visible of sprite x = TRUE
  8.   end repeat  
  9.   
  10.   puppetSprite 21, TRUE
  11.   set the visible of sprite 21 = TRUE
  12.   if rollOver(1) then 
  13.     cursor [the memberNum of member "pointy", the memberNum of member "pointy_mask"]
  14.     repeat with x = 10 to 21
  15.       puppetSprite x, FALSE
  16.       set the visible of sprite x = FALSE
  17.     end repeat
  18.     go to frame "Blur"
  19.   end if
  20. end 
  21.  
  22. on exitFrame
  23.   go to the frame
  24. end